home *** CD-ROM | disk | FTP | other *** search
/ START Magazine / START VOL 4 NO 1.st / POGOSRC.ARC / POGO.H < prev    next >
Encoding:
C/C++ Source or Header  |  1985-11-20  |  8.2 KB  |  378 lines

  1.  
  2.  
  3. #ifndef WORD
  4. #define WORD int
  5. #endif WORD
  6.  
  7. #define Array_els(arr) (sizeof(arr)/sizeof(arr[0]))
  8.  
  9. /* 16 bit or 32 bit ints? */
  10. #define NUMBER int        
  11.  
  12. /* Some useful defines in Aztec's ctype.h missing from other implementations. */
  13. #ifndef iscsymf
  14. #define iscsymf(x) ( isalpha(x) || (x) == '_')
  15. #endif iscsymf
  16.  
  17. #ifndef iscsym
  18. #define iscsym(x)    ( iscsymf(x) || isdigit(x) )
  19. #endif iscsym
  20.  
  21. extern char *add_string();
  22.  
  23. typedef int function();
  24.  
  25.  
  26. /* Pretty much a generic list of names structure */
  27. struct names
  28.     {
  29.     struct names *next;
  30.     char *name;
  31.     };
  32. typedef struct names Names;
  33. extern Names *literals;
  34.  
  35. /* Overlap an integer and a pointer in the same space */
  36. union pt_int
  37.     {
  38.     NUMBER i;
  39.     void *p;
  40.     long l;
  41.     };
  42. extern union pt_int dstack_buf[];
  43.  
  44. /* Symbol table (just for linear searching so far...) */
  45. struct symbol
  46.     {
  47.     struct symbol *next;
  48.     union pt_int symval;
  49.     int doff;
  50.     char *name;
  51.     int type;    /* basic data type */
  52.     int elements;    /* array elements, 0 if not array */
  53.     int tok_type;    /* what sort of token value to return if matched */
  54.     char scope;        /* global or local */
  55.     char assigned;    /* has variable been assigned to? */
  56.     char used;        /* is variable used? */
  57.     char pad;    
  58.     };
  59. typedef struct symbol Symbol;
  60. /* defines for different types of symbols */
  61.  
  62. extern int creature_count;
  63.  
  64. #define GLOBAL 0
  65. #define LOCAL 1
  66.  
  67. #define INT 0
  68. #define FUNC 1        /* resolved function */
  69. #define LABEL 2        /* resolved label */
  70. #define FLABEL 3    /* forward label */
  71. #define FFUNC 4        /* forward function */
  72. #define FFFUNC 5    /* very very first function use not defined */
  73. #define PREDEF 6    /* built in function */
  74. #define STRING 7
  75. #define ACTION 8
  76. #define BAD 9
  77. #define CREATURE 10
  78. #define FCREATURE 11
  79. #define CONSTANT 12
  80. #define UNKNOWN 13
  81. /* Types of parameters */
  82.  
  83. extern char *tnames[];
  84.  
  85. /* the instructions for POGO's virtual machine */
  86. struct pogo_op
  87.     {
  88.     int type;
  89.     union pt_int data;
  90.     };
  91. void *run_ops();    /* the virtual machine */
  92.  
  93. #define OP_CON 0
  94. #define OP_VAR 1
  95. #define OP_ADD 2
  96. #define OP_SUB 3
  97. #define OP_DIV 4
  98. #define OP_MUL 5
  99. #define OP_NEG 6
  100. #define OP_ASSIGN 7
  101. #define OP_SPAWN 8
  102. #define OP_CBRA 9
  103. #define OP_BRA 10
  104. #define OP_EQ    11
  105. #define OP_NE    12
  106. #define OP_LT    13
  107. #define OP_GT    14
  108. #define OP_END    15
  109. #define OP_FUN  16
  110. #define OP_EVOLVE 17
  111. #define OP_MOD 18
  112. #define OP_BAND 19
  113. #define OP_BOR 20
  114. #define OP_BXOR 21
  115. #define OP_BNOT 22
  116. #define OP_CALL 23
  117. #define OP_LNOT 24
  118. #define OP_LE    25
  119. #define OP_GE    26
  120. #define OP_RSHIFT 27
  121. #define OP_LSHIFT 28
  122. #define OP_LAND 29
  123. #define OP_LOR    30
  124. #define OP_RETRIEVE 31
  125. #define OP_LVAR 32
  126. #define OP_LASSIGN 33
  127. #define OP_ARR 34
  128. #define OP_LARR 35
  129. #define OP_AASSIGN 36
  130. #define OP_LAASSIGN 37
  131. #define OP_CHECK 38
  132. #define OP_MOVES 39
  133. #define OP_PREDEF 40
  134. #define OP_KILL 41
  135. #define OP_PCALL 42
  136. #define OP_PREDEFL 43
  137. #define OP_PPREDEF 44
  138. #define OP_CHECKTYPE 45
  139. #define OP_STATEMENT 46
  140. #define OP_SVAR    47
  141. #define OP_LSVAR 48
  142. #define OP_SARR 49 
  143. #define OP_LSARR 50
  144. #define OP_SASSIGN 51
  145. #define OP_LSASSIGN 52
  146. #define OP_ASASSIGN 53
  147. #define OP_LASASSIGN 54
  148. #define OP_FREES 55
  149. #define OP_CSASSIGN 56
  150. #define OP_CASASSIGN 57
  151. #define OP_CALLS 58
  152.  
  153.  
  154. #define FREFS 64
  155. #define SSZ (8*1024)
  156. #define CSZ 1024
  157.  
  158. /* function to keep track of forward creature local variable refs. */
  159. struct crw_fixup
  160.     {
  161.     struct crw_fixup *next;
  162.     Symbol *creature;
  163.     char *lvar;
  164.     int code_offset;
  165.     int source_line;
  166.     };
  167. /* A structure to keep track of function calling references... */
  168. struct func_forward
  169.     {
  170.     struct func_forward *next;
  171.     Symbol *fsym;
  172.     int source_line;
  173.     int code_offset;
  174.     };
  175. extern struct func_frame *ff_list;
  176. extern struct func_frame *universe_function;
  177.  
  178. struct statement
  179.     {
  180.     struct statement *next;
  181.     int line_pos;
  182.     int char_pos;
  183.     };
  184. typedef struct statement Statement;
  185.  
  186. /* A local frame of reference for a function during compile. */
  187. struct pogo_frame
  188.     {
  189.     struct pogo_frame *parent;
  190.     Symbol *symbols;
  191.     int dcount;
  192.     int pcount;
  193.     struct func_forward *ffixes;
  194.     struct crw_fixup *crw_fixes;
  195.     struct pogo_op code_buf[CSZ];
  196.     int op_count;
  197.     int fref_ops[FREFS];
  198.     void *fref_sym[FREFS];
  199.     int fref_count;
  200.     int ret_type;
  201.     };
  202. extern struct pogo_frame *rframe;
  203. extern struct pogo_frame *global_frame;
  204.  
  205. #define MAX_PARAMS 16
  206. /* What's left of the function's frame after compilation */
  207. struct func_frame
  208.     {
  209.     struct func_frame *next;
  210.     Symbol *symbols;
  211.     int pcount;        /* parameter count */
  212.     int dcount;
  213.     struct func_forward *ffixes;
  214.     struct crw_fixup *crw_fixes;
  215.     struct pogo_op *code;
  216.     int code_size;
  217.     unsigned char ptypes[MAX_PARAMS];
  218.     char *name;
  219.     int crtype;
  220.     int ret_type;
  221.     char got_strings;
  222.     char foo;
  223.     };
  224.  
  225.  
  226. /* Two structures to help fix up forward references generated by break
  227.    statements.  One break_frame for each loop, one break_fixer for
  228.    each break. */
  229. struct break_fixer
  230.     {
  231.     struct break_fixer *next;
  232.     int code_offset;
  233.     };
  234.  
  235. struct break_frame
  236.     {
  237.     struct break_frame *next;
  238.     struct break_fixer *fixes;
  239.     };
  240. /* break fixup list */
  241. extern struct break_frame *bfix_frame;
  242.  
  243.  
  244. /* variables to keep track of where we are in source file */
  245. #define SZTOKE 512
  246. #define MAX_SYM_LEN 40
  247.  
  248. /* variables maintained by next_token() */
  249. extern char ctoke[SZTOKE];
  250. extern Symbol *csym;
  251. extern int cint;
  252. extern int cttype;
  253. extern int reuse;
  254.  
  255. /* bracket and paren strings here so don't mess of my editors paren
  256.    matching... */
  257.  
  258. #define LBRACE_STR    "{"
  259. #define RBRACE_STR    "}"
  260. #define LPAREN_STR    "("
  261. #define RPAREN_STR  ")"
  262.  
  263.  
  264. /* values stored in cttype by tokenizer */
  265. #define TOK_LBRACE '{'
  266. #define TOK_RBRACE '}'
  267. #define TOK_LPAREN '('
  268. #define TOK_RPAREN ')'
  269. #define TOK_SQUO  '\''
  270. #define TOK_LNOT    '!'
  271. #define HIASC 256
  272. #define TOK_VAR (HIASC+0)
  273. #define TOK_NUM (HIASC+1)
  274. #define TOK_QUO (HIASC+2)
  275. #define TOK_UNDEF (HIASC+3)
  276. #define TOK_EQ    (HIASC+4)
  277. #define TOK_NE    (HIASC+5)
  278. #define TOK_LE    (HIASC+6)
  279. #define TOK_GE    (HIASC+7)
  280. #define TOK_LSHIFT (HIASC+8)
  281. #define TOK_RSHIFT (HIASC+9)
  282. #define TOK_LAND  (HIASC+10)
  283. #define TOK_LOR   (HIASC+11)
  284. #define TOK_FOR    (HIASC+12)
  285. #define TOK_WHILE (HIASC+13)
  286. #define TOK_LOOP (HIASC+14)
  287. #define TOK_IF  (HIASC+15)
  288. #define TOK_ELSE (HIASC+16)
  289. #define TOK_FUNCTION (HIASC+17)
  290. #define TOK_CREATURE (HIASC+18)
  291. #define TOK_INT    (HIASC+19)
  292. #define TOK_SPAWN (HIASC+20)
  293. #define TOK_KILL (HIASC+21)
  294. #define TOK_EVOLVE (HIASC+22)
  295. #define TOK_BREAK (HIASC+23)
  296. #define TOK_TO (HIASC+24)
  297. #define TOK_STEP (HIASC+25)
  298. #define TOK_GOTO (HIASC+26)
  299. #define TOK_RETURN (HIASC+27)
  300. #define TOK_CID    (HIASC+28)
  301. #define TOK_CAGE (HIASC+29)
  302. #define TOK_CNEW (HIASC+30)
  303. #define TOK_CNAME (HIASC+31)
  304. #define TOK_CX    (HIASC+32)
  305. #define TOK_CY  (HIASC+33)
  306. #define TOK_CDX (HIASC+34)
  307. #define TOK_CDY (HIASC+35)
  308. #define TOK_CONSTANT (HIASC+36)
  309. #define TOK_CLOSESTT (HIASC+37)
  310. #define TOK_CREAD (HIASC+38)
  311. #define TOK_CWRITE (HIASC+39)
  312. #define TOK_STRING (HIASC+40)
  313. #define TOK_NULL (HIASC+41)
  314.  
  315.  
  316. /* yer basic error state */
  317. extern int global_err;
  318. extern int got_eof;
  319. extern int got_stop;
  320. extern int user_abort, run_abort;
  321.  
  322.  
  323. extern FILE *pogo_in;
  324. extern char *title;    
  325. extern char line_buf[SZTOKE];
  326. extern char *line_pos;
  327. extern int line_count;
  328.  
  329. extern Symbol *new_symbol(), *named_symbol(), *find_symbol(), *in_list();
  330. extern void *askmem(), *beg_mem(), *beg_zero();
  331. extern char *clone_string();
  332.  
  333. extern int lastkey;    /* what pogo break store 'cause share keyboard with pogo */
  334.  
  335. #define SECRETS 12    /* space for system */
  336.                     /* (must have 2 more secrets than really use) */
  337.                     /* Currently have secrets - ID, Age, NewBorn */
  338.                     /* MyName, MyX, MyY, MyDx, MyDy */
  339. #define CID        0
  340. #define CAGE    1
  341. #define CNEW    2
  342. #define CNAME    3
  343. #define CX        4
  344. #define CY        5
  345. #define CDX    6
  346. #define CDY    7
  347. #define CTYPE 8
  348.  
  349.  
  350. extern int in_creature, in_loop, in_func, run_time;
  351.  
  352. extern long mult_to_long();    /* 2 short arguments, long result */
  353.  
  354. extern int cur_pid, active_frame;
  355.  
  356. #define RMAX 64
  357.  
  358. extern struct func_frame *strace[RMAX];
  359.  
  360. extern int watchdog;
  361.  
  362. extern int do_frees;
  363.  
  364. #define XMAX 320
  365. #define BPR 320
  366. #define YMAX 200
  367. #define WIDTH 320
  368. #define HEIGHT 200
  369. #define DEPTH 8
  370. #define COLORS 256
  371. #define SCREEN_SIZE (BPR*HEIGHT)
  372. #define VGA_SCREEN ((void *)0xa0000000)
  373. #define CH_WIDTH 6
  374. #define CH_HEIGHT 8
  375.  
  376.  
  377. extern int fret_type;
  378.